[INFO] fetching crate db-core 0.2.1...
[INFO] checking db-core-0.2.1 against try#901d6c1c62d7c61e05469e996c297476078ee06b for pr-157082
[INFO] extracting crate db-core 0.2.1 into /workspace/builds/worker-6-tc2/source
[INFO] started tweaking crates.io crate db-core 0.2.1
[INFO] finished tweaking crates.io crate db-core 0.2.1
[INFO] tweaked toml for crates.io crate db-core 0.2.1 written to /workspace/builds/worker-6-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate db-core 0.2.1 on toolchain 901d6c1c62d7c61e05469e996c297476078ee06b
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+901d6c1c62d7c61e05469e996c297476078ee06b" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+901d6c1c62d7c61e05469e996c297476078ee06b" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Updating crates.io index
[INFO] [stderr]      Locking 19 packages to latest compatible versions
[INFO] [stderr]       Adding rand v0.8.6 (available: v0.10.1)
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+901d6c1c62d7c61e05469e996c297476078ee06b" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:3e793bdf10248eb2ddbd6b0faebed8155c11b4589982e2893733958d93e8d540" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] f7831af0a1cb69e62fb7a3c973498dd1e4681b2008f65c39c2843df766379bdc
[INFO] running `Command { std: "docker" "start" "f7831af0a1cb69e62fb7a3c973498dd1e4681b2008f65c39c2843df766379bdc", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "f7831af0a1cb69e62fb7a3c973498dd1e4681b2008f65c39c2843df766379bdc" "/opt/rustwide/cargo-home/bin/cargo" "+901d6c1c62d7c61e05469e996c297476078ee06b" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "f7831af0a1cb69e62fb7a3c973498dd1e4681b2008f65c39c2843df766379bdc", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-w" "/opt/rustwide/workdir" "--user" "0:0" "f7831af0a1cb69e62fb7a3c973498dd1e4681b2008f65c39c2843df766379bdc" "/opt/rustwide/cargo-home/bin/cargo" "+901d6c1c62d7c61e05469e996c297476078ee06b" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]     Checking log v0.4.32
[INFO] [stderr]     Checking getrandom v0.2.17
[INFO] [stderr]     Checking fs2 v0.4.3
[INFO] [stderr]     Checking ppv-lite86 v0.2.21
[INFO] [stderr]     Checking rand_core v0.6.4
[INFO] [stderr]     Checking db-core v0.2.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/common/intercom.rs:31:45
[INFO] [stdout]    |
[INFO] [stdout] 31 |     pub fn wait_for(&self, check_cond: &mut (dyn FnMut(&T) -> bool)) -> MutexGuard<T>
[INFO] [stdout]    |                                             ^                     ^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 31 -     pub fn wait_for(&self, check_cond: &mut (dyn FnMut(&T) -> bool)) -> MutexGuard<T>
[INFO] [stdout] 31 +     pub fn wait_for(&self, check_cond: &mut dyn FnMut(&T) -> bool) -> MutexGuard<T>
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/common/intercom.rs:59:52
[INFO] [stdout]    |
[INFO] [stdout] 59 | ...                   check_cond: &mut (dyn FnMut(&T) -> bool), 
[INFO] [stdout]    |                                        ^                     ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 59 -                                   check_cond: &mut (dyn FnMut(&T) -> bool), 
[INFO] [stdout] 59 +                                   check_cond: &mut dyn FnMut(&T) -> bool, 
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/common/intercom.rs:60:56
[INFO] [stdout]    |
[INFO] [stdout] 60 | ...                   interrupt_cond: &mut (dyn FnMut() -> bool), 
[INFO] [stdout]    |                                            ^                   ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 60 -                                   interrupt_cond: &mut (dyn FnMut() -> bool), 
[INFO] [stdout] 60 +                                   interrupt_cond: &mut dyn FnMut() -> bool, 
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused import: `crate::log_mgr::io::LogRecordHeader`
[INFO] [stdout]   --> src/log_mgr/log_mgr.rs:14:9
[INFO] [stdout]    |
[INFO] [stdout] 14 | pub use crate::log_mgr::io::LogRecordHeader;
[INFO] [stdout]    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]   --> src/log_mgr/buf.rs:10:7
[INFO] [stdout]    |
[INFO] [stdout] 10 | #[cfg(feature = "metrics")]
[INFO] [stdout]    |       ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]    |
[INFO] [stdout]    = note: no expected values for `feature`
[INFO] [stdout]    = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]    = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout]    = note: `#[warn(unexpected_cfgs)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:248:7
[INFO] [stdout]     |
[INFO] [stdout] 248 | #[cfg(feature = "metrics")]
[INFO] [stdout]     |       ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:259:11
[INFO] [stdout]     |
[INFO] [stdout] 259 |     #[cfg(feature = "metrics")]
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:417:11
[INFO] [stdout]     |
[INFO] [stdout] 417 |     #[cfg(feature = "metrics")]
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:425:11
[INFO] [stdout]     |
[INFO] [stdout] 425 |     #[cfg(feature = "metrics")]
[INFO] [stdout]     |           ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:276:15
[INFO] [stdout]     |
[INFO] [stdout] 276 |         #[cfg(feature = "metrics")]
[INFO] [stdout]     |               ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:284:19
[INFO] [stdout]     |
[INFO] [stdout] 284 |             #[cfg(feature = "metrics")]
[INFO] [stdout]     |                   ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:346:27
[INFO] [stdout]     |
[INFO] [stdout] 346 |                     #[cfg(feature = "metrics")] 
[INFO] [stdout]     |                           ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:356:27
[INFO] [stdout]     |
[INFO] [stdout] 356 |                     #[cfg(feature = "metrics")] 
[INFO] [stdout]     |                           ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:404:19
[INFO] [stdout]     |
[INFO] [stdout] 404 |             #[cfg(feature = "metrics")] {
[INFO] [stdout]     |                   ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:410:23
[INFO] [stdout]     |
[INFO] [stdout] 410 |             #[cfg(not(feature = "metrics"))] {
[INFO] [stdout]     |                       ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unexpected `cfg` condition value: `metrics`
[INFO] [stdout]    --> src/log_mgr/buf.rs:579:19
[INFO] [stdout]     |
[INFO] [stdout] 579 |             #[cfg(feature = "metrics")]
[INFO] [stdout]     |                   ^^^^^^^^^^^^^^^^^^^ help: remove the condition
[INFO] [stdout]     |
[INFO] [stdout]     = note: no expected values for `feature`
[INFO] [stdout]     = help: consider adding `metrics` as a feature in `Cargo.toml`
[INFO] [stdout]     = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated type alias `std::alloc::LayoutErr`: Name does not follow std convention, use LayoutError
[INFO] [stdout]    --> src/common/errors.rs:219:17
[INFO] [stdout]     |
[INFO] [stdout] 219 |     std::alloc::LayoutErr, IncorrectLayout, layout_err,
[INFO] [stdout]     |                 ^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(deprecated)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated type alias `std::alloc::LayoutErr`: Name does not follow std convention, use LayoutError
[INFO] [stdout]    --> src/common/errors.rs:209:79
[INFO] [stdout]     |
[INFO] [stdout] 209 |     IncorrectLayout             , incorrect_layout              , std::alloc::LayoutErr,
[INFO] [stdout]     |                                                                               ^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated function `std::sync::atomic::spin_loop_hint`: use hint::spin_loop instead
[INFO] [stdout]    --> src/common/intercom.rs:202:33
[INFO] [stdout]     |
[INFO] [stdout] 202 |             core::sync::atomic::spin_loop_hint();
[INFO] [stdout]     |                                 ^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0658]: use of unstable library feature `core_intrinsics`: intrinsics are unlikely to ever be stabilized, instead they should be used through stabilized interfaces in the rest of the standard library
[INFO] [stdout]    --> src/block_mgr/block.rs:344:18
[INFO] [stdout]     |
[INFO] [stdout] 344 |         unsafe { std::intrinsics::copy(src, dst, region_end - region_start) };
[INFO] [stdout]     |                  ^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout]     = help: add `#![feature(core_intrinsics)]` to the crate attributes to enable
[INFO] [stdout]     = note: this compiler was built on 2026-05-28; consider upgrading it if it is out of date
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Checking rand_chacha v0.3.1
[INFO] [stdout] warning: use of deprecated method `std::sync::atomic::Atomic::<usize>::compare_and_swap`: Use `compare_exchange` or `compare_exchange_weak` instead
[INFO] [stdout]    --> src/log_mgr/buf.rs:112:52
[INFO] [stdout]     |
[INFO] [stdout] 112 |             let cur_acq_size = self.acquire_size.0.compare_and_swap(
[INFO] [stdout]     |                                                    ^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated method `std::sync::atomic::Atomic::<usize>::compare_and_swap`: Use `compare_exchange` or `compare_exchange_weak` instead
[INFO] [stdout]    --> src/log_mgr/buf.rs:182:52
[INFO] [stdout]     |
[INFO] [stdout] 182 |             let cur_acq_size = self.acquire_size.0.compare_and_swap(
[INFO] [stdout]     |                                                    ^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Checking rand v0.8.6
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/storage/datastore.rs:445:29
[INFO] [stdout]     |
[INFO] [stdout] 445 |     fn add_fi_blocks(&self, mut block_id: &mut BlockId, fi_block_num: usize, stub_pin: &AtomicU64, f: &std::fs::File) -> Result<(),...
[INFO] [stdout]     |                             ----^^^^^^^^
[INFO] [stdout]     |                             |
[INFO] [stdout]     |                             help: remove this `mut`
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/storage/datastore.rs:863:13
[INFO] [stdout]     |
[INFO] [stdout] 863 |         let mut desc = xlock.get_mut(&file_id).unwrap();
[INFO] [stdout]     |             ----^^^^
[INFO] [stdout]     |             |
[INFO] [stdout]     |             help: remove this `mut`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/storage/datastore.rs:869:13
[INFO] [stdout]     |
[INFO] [stdout] 869 |         let mut desc = xlock.get_mut(&file_id).unwrap();
[INFO] [stdout]     |             ----^^^^
[INFO] [stdout]     |             |
[INFO] [stdout]     |             help: remove this `mut`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]    --> src/storage/block_driver.rs:731:26
[INFO] [stdout]     |
[INFO] [stdout] 731 |     pub fn replay(&self, mut rs: &mut ReplayState, data: &[u8]) -> Result<(), Error> {
[INFO] [stdout]     |                          ----^^
[INFO] [stdout]     |                          |
[INFO] [stdout]     |                          help: remove this `mut`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0658`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `db-core` (lib) due to 1 previous error; 25 warnings emitted
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] running `Command { std: "docker" "inspect" "f7831af0a1cb69e62fb7a3c973498dd1e4681b2008f65c39c2843df766379bdc", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "f7831af0a1cb69e62fb7a3c973498dd1e4681b2008f65c39c2843df766379bdc", kill_on_drop: false }`
[INFO] [stdout] f7831af0a1cb69e62fb7a3c973498dd1e4681b2008f65c39c2843df766379bdc
